home *** CD-ROM | disk | FTP | other *** search
/ Practical Internet Web Designer 90 / PIWD90.iso / pc / contents / flash_gaming / tutorial_files / Pages 70-80 / STEP51.TXT < prev    next >
Text File  |  2003-01-01  |  1KB  |  117 lines

  1. onClipEvent(load){
  2.  
  3.     _root.frameNumber=random(12)+1;
  4.  
  5.     _root.selectClip.gotoAndStop([_root.frameNumber]);
  6.  
  7. }
  8.  
  9.  
  10.  
  11. onClipEvent(enterFrame){
  12.  
  13.     _root.guess=0;
  14.  
  15.     if (_root.head1._visible==true){
  16.  
  17.         _root.guess++;
  18.  
  19.     }
  20.  
  21.     if (_root.head2._visible==true){
  22.  
  23.         _root.guess++;
  24.  
  25.     }
  26.  
  27.     if (_root.head3._visible==true){
  28.  
  29.         _root.guess++;
  30.  
  31.     }
  32.  
  33.     if (_root.head4._visible==true){
  34.  
  35.         _root.guess++;
  36.  
  37.     }
  38.  
  39.     if (_root.head5._visible==true){
  40.  
  41.         _root.guess++;
  42.  
  43.     }
  44.  
  45.     if (_root.head6._visible==true){
  46.  
  47.         _root.guess++;
  48.  
  49.     }
  50.  
  51.     if (_root.head7._visible==true){
  52.  
  53.         _root.guess++;
  54.  
  55.     }
  56.  
  57.     if (_root.head8._visible==true){
  58.  
  59.         _root.guess++;
  60.  
  61.     }
  62.  
  63.     if (_root.head9._visible==true){
  64.  
  65.         _root.guess++;
  66.  
  67.     }
  68.  
  69.     if (_root.head10._visible==true){
  70.  
  71.         _root.guess++;
  72.  
  73.     }
  74.  
  75.     if (_root.head11._visible==true){
  76.  
  77.         _root.guess++;
  78.  
  79.     }
  80.  
  81.     if (_root.head12._visible==true){
  82.  
  83.         _root.guess++;
  84.  
  85.     }
  86.  
  87.     if (_root.head13._visible==true){
  88.  
  89.         _root.guess++;
  90.  
  91.     }
  92.  
  93.     if (_root.head14._visible==true){
  94.  
  95.         _root.guess++;
  96.  
  97.     }
  98.  
  99.     if (_root.head15._visible==true){
  100.  
  101.         _root.guess++;
  102.  
  103.     }
  104.  
  105.     if (_root.head16._visible==true){
  106.  
  107.         _root.guess++;
  108.  
  109.     }
  110.  
  111.     if (_root.guess==1){
  112.  
  113.         _root.nextFrame();
  114.  
  115.     }
  116.  
  117. }